Function Reference

ChrW

Returns a character corresponding to a unicode code.

ChrW ( UNICODEcode )

 

Parameters

UNICODEcode A unicode code in the range 0-65535 (e.g., 65 returns the capital letter A).

 

Return Value

Success: Returns a string containing the representation of the given code.
Failure: Returns a blank string and sets @error to 1 if the UNICODEcode is greater than 65535.

 

Remarks

A complete ASCII table is in the Appendix.

 

Related

Asc, AscW, Chr, String

 

Example


$text = ""
For $i = 256 to 512
    $text = $text & ChrW($i)
Next
MsgBox(0, "Unicode chars 256 to 512", $text)